@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Catamaran:wght@400;500;600;700&display=swap");
:root {
    --common-font: 'Catamaran', sans-serif;
    --heading-font: 'Lato', sans-serif;
    --transition: .5s all ease;
    --all-size: 16px;
    --white-color: #ffffff;
    --grey-color: #555555;
    --black-color: #1a1a1a;
    --green-color: #59a140;
    --orange-color: #f13d03;
}


/*----- Default CSS -----*/

body {
    font-family: var(--common-font);
    color: var(--grey-color);
    background-color: var(--white-color);
    font-size: var(--all-size);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    color: var(--black-color);
    font-weight: 700;
}

p {
    line-height: 1.8;
}

a {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

a:hover {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.d-table {
    width: 100%;
    height: 100%;
}

.d-table-cell {
    vertical-align: middle;
}

.ptb-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.pt-100 {
    padding-top: 100px;
}

.pt-50 {
    padding-top: 50px;
}

.pb-70 {
    padding-bottom: 70px;
}

.pb-100 {
    padding-bottom: 100px;
}

button:focus {
    outline: 0;
}

.btn.focus,
.btn:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}


/*----- End Default CSS -----*/


/*----- Navbar CSS -----*/

.main-nav {
    padding-top: 0;
    padding-bottom: 0;
    background: #fff;
    opacity: .95;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.main-nav .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.main-nav nav {
    padding: 0;
}

.main-nav nav .navbar-brand {
    background-color: #fff;
    display: inline-block;
    padding: 15px 20px;
}

.main-nav nav .navbar-nav {
    margin-left: auto;
    margin-right: auto;
}

.main-nav nav .navbar-nav .nav-item:hover a {
    color: var(--green-color);
}

.main-nav nav .navbar-nav .nav-item a {
    color: #000;
    font-weight: 500;
    text-transform: capitalize;
    margin-left: 30px;
    margin-right: 30px;
}

.main-nav nav .navbar-nav .nav-item a::after {
    display: none;
}

.main-nav nav .navbar-nav .nav-item a i {
    display: inline-block;
    font-size: 20px;
    position: absolute;
    top: 16px;
}

.main-nav nav .navbar-nav .nav-item a:hover,
.main-nav nav .navbar-nav .nav-item a:focus,
.main-nav nav .navbar-nav .nav-item a.active {
    color: var(--green-color);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu {
    padding: 0;
    background: #fff;
    height: 50vh;
    overflow-y: scroll;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li {
    border-bottom: 1px dashed #00997b4f;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:last-child {
    border-bottom: 0;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover .dropdown-menu {
    top: 2px !important;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li:hover a {
    color: var(--green-color);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a i {
    top: 9px;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li a.active {
    color: var(--green-color);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu {
    right: -100%;
    left: auto;
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:hover,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a:focus,
.main-nav nav .navbar-nav .nav-item .dropdown-menu li .dropdown-menu li a.active {
    color: var(--green-color);
}

.main-nav nav .navbar-nav .nav-item .dropdown-menu li a {
    color: #000;
}

.main-nav.menu-shrink {
    -webkit-box-shadow: 0px 0px 20px 0px #dddddd80;
    box-shadow: 0px 0px 20px 0px #dddddd80;
    opacity: 1;
}

.main-nav.menu-shrink .navbar-brand {
    background-color: #fff;
    display: inline-block;
    padding: 15px 20px;
}

.main-nav.menu-shrink .side-nav ul li .modal-btn {
    padding: 10px 6px 10px;
}

.side-nav ul {
    margin: 0;
    padding: 0;
}

.side-nav ul li {
    list-style-type: none;
    display: inline-block;
    vertical-align: middle;
}

.side-nav ul li:nth-child(2) {
    border-left: 1px solid var(--white-color);
    padding-left: 15px;
    margin-left: 0px;
}

.side-nav ul li .call {
    position: relative;
    padding-left: 50px;
    margin-right: 25px;
}

.side-nav ul li .call i {
    position: absolute;
    top: 8px;
    left: 0;
    color: #f58220;
    font-size: 35px;
}

.side-nav ul li .call span {
    display: block;
    color: var(--green-color);
    margin-bottom: 2px;
}

.side-nav ul li .call a {
    display: block;
    color: #f58220;
}

.side-nav ul li .call a:hover {
    color: var(--green-color);
}

.side-nav ul li .nav-srh {
    position: relative;
    display: inline-block;
}

.side-nav ul li .nav-srh .search-area {
    position: absolute;
    right: 8px;
    bottom: -105px;
    z-index: 5;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    max-height: 0;
    overflow: hidden;
    background-color: var(--white-color);
}

.side-nav ul li .nav-srh .search-area .search-icon {
    vertical-align: middle;
    position: absolute;
    right: 30px;
    top: 32px;
    background-color: transparent;
    font-size: 20px;
    color: #515151;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.side-nav ul li .nav-srh .search-area .search-icon:hover {
    color: var(--green-color);
}

.side-nav ul li .nav-srh .search-area .src-input {
    outline: none;
    padding-left: 20px;
    margin: 0;
    width: 300px;
    background-color: #dddddd80;
    border: 1px solid #ddd;
    font-size: var(--all-size);
    height: 45px;
    border-radius: 0;
}

.side-nav ul li .nav-srh .search-area.opened {
    max-height: 100px;
    padding: 20px 25px;
    -webkit-box-shadow: 0px 0px 15px #dddddd80;
    box-shadow: 0px 0px 15px #dddddd80;
}

.side-nav ul li .nav-srh .search-icon {
    font-size: 25px;
    position: relative;
    top: 4px;
    color: var(--white-color);
    border: 0;
    outline: none;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: transparent;
}

.side-nav ul li .nav-srh .search-icon:hover {
    color: var(--green-color);
}

.side-nav ul li .nav-srh .search-toggle .search-icon.icon-close {
    display: none;
}

.side-nav ul li .nav-srh .search-toggle.opened .search-icon.icon-search {
    display: none;
}

.side-nav ul li .nav-srh .search-toggle.opened .search-icon.icon-close {
    display: block;
}

.side-nav ul li .modal-btn {
    padding: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    position: relative;
    top: 0;
    background-color: var(--white-color);
    border-radius: 0;
    padding: 36px 30px 35px;
    border: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.side-nav ul li .modal-btn:hover span:nth-child(2) {
    width: 25px;
}

.side-nav ul li .modal-btn:hover span:nth-child(3) {
    width: 15px;
}

.side-nav ul li .modal-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--black-color);
    margin-bottom: 5px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.side-nav ul li .modal-btn span:last-child {
    margin-bottom: 0;
}

.modal-body {
    padding: 0;
}

.modal-body h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #000;
    border-bottom: 2px solid var(--green-color);
    padding-bottom: 5px;
    display: inline-block;
}

.modal-body p {
    margin-bottom: 20px;
}

.modal-body .contact-area {
    margin-bottom: 20px;
}

.modal-body .contact-area ul {
    margin: 0;
    padding: 0;
    margin-top: -4px;
}

.modal-body .contact-area ul li {
    list-style-type: none;
    display: block;
    position: relative;
    padding-left: 45px;
    margin-bottom: 12px;
}

.modal-body .contact-area ul li:last-child {
    margin-bottom: 0;
}

.modal-body .contact-area ul li i {
    display: inline-block;
    color: var(--green-color);
    font-size: 20px;
    position: absolute;
    top: 0;
    left: 0;
}

.modal-body .contact-area ul li span {
    display: block;
    color: var(--black-color);
}

.modal-body .contact-area ul li a {
    display: inline-block;
    color: #000;
}

.modal-body .contact-area ul li a:hover {
    color: var(--green-color);
}

.modal-body .image-area .col-lg-4 {
    padding-right: 10px;
    margin-right: 0px;
}

.modal-body .image-area a {
    display: block;
    margin-bottom: 20px;
}

.modal-body .image-area a img {
    width: 100%;
}

.modal-body .modal-item {
    margin-bottom: 30px;
}

.modal-body .social-area ul {
    margin: 0;
    padding: 0;
}

.modal-body .social-area ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 5px;
}

.modal-body .social-area ul li:last-child {
    margin-right: 0;
}

.modal-body .social-area ul li a {
    display: block;
    font-size: 18px;
    width: 35px;
    height: 35px;
    text-align: center;
    border-radius: 50%;
    color: var(--white-color);
    background-color: var(--green-color);
}

.modal-body .social-area ul li a i {
    line-height: 35px;
}

.modal-body .social-area ul li a:hover {
    background-color: var(--black-color);
}

#myModalRight {
    z-index: 99999;
}

#myModalRight .modal-header {
    padding: 0;
    margin-bottom: 20px;
    padding-bottom: 25px;
}

#myModalRight .modal-header img {
    max-width: 85%;
}

#myModalRight .modal-header .close {
    position: relative;
    top: 6px;
    -webkit-transform: var(--transition);
    transform: var(--transition);
}

#myModalRight .modal-header .close:hover {
    color: var(--green-color);
}

#myModalRight .modal-content {
    padding: 25px;
}

.modal.modal-right .modal-dialog {
    max-width: 380px;
    min-height: 100vh;
}

.modal.modal-right.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal.modal-right .modal-content {
    height: 100vh;
    overflow-y: auto;
    border-radius: 0;
}

.modal.modal-left .modal-dialog {
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    margin: 0 auto 0 0;
}

.modal.modal-right .modal-dialog {
    -webkit-transform: translate(100%, 0);
    transform: translate(100%, 0);
    margin: 0 0 0 auto;
}


/*-- Home Two --*/

.main-nav.two {
    background-color: var(--white-color);
    opacity: 1;
}

.main-nav.two.menu-shrink {
    border-bottom: 0;
}

.main-nav.two nav .navbar-nav .nav-item a {
    color: var(--black-color);
}

.main-nav.two nav .navbar-nav .nav-item a:hover,
.main-nav.two nav .navbar-nav .nav-item a:focus,
.main-nav.two nav .navbar-nav .nav-item a.active {
    color: var(--green-color);
}

.main-nav.two .side-nav ul li:nth-child(2) {
    border-left: 1px solid var(--black-color);
}

.main-nav.two .side-nav ul li .nav-srh .search-icon {
    color: var(--black-color);
}

.main-nav.two .side-nav ul li .nav-srh .search-icon:hover {
    color: var(--green-color);
}

.main-nav.two .side-nav ul li .call i {
    color: var(--black-color);
}

.main-nav.two .side-nav ul li .call a {
    color: var(--black-color);
}

.main-nav.two .side-nav ul li .call a:hover {
    color: var(--green-color);
}

.main-nav.two .side-nav ul li .modal-btn {
    background-color: var(--green-color);
}

.main-nav.two .side-nav ul li .modal-btn span {
    background-color: var(--white-color);
}

.main-nav.three {
    border-bottom: 1px solid #f5f5f5;
}


/*----- End Navbar CSS -----*/


/*----- topbar CSS -----*/

.top-bar {
    background: #f58220;
    /*    background: #59a140;*/
    color: #fff;
    font-size: 14px;
}

.top-bar a {
    color: #fff;
}

.top-bar i {
    margin-right: 5px;
}

.top-bar ul {
    list-style: none;
    display: flex;
    padding: 10px;
    margin-bottom: 0px;
}

.top-bar ul li {
    margin-right: 10px;
}

.top-bar ul li.border-left {
    border-left: 1px solid #fff;
    padding-left: 15px;
}


/*----- End topbar CSS -----*/


/*----- Banner CSS -----*/

.banner-img-one {
    background-image: url("../img/home-one/banner-bg1.jpg");
}

.banner-img-two {
    background-image: url("../img/home-one/banner-bg2.jpg");
}

.banner-img-three {
    background-image: url("../img/home-one/banner-bg3.jpg");
}

.owl-carousel .owl-item .banner-item .brand {
    position: absolute;
    top: 35%;
    left: 15%;
    display: block;
    width: 300px;
    height: 300px;
}

.owl-carousel .owl-item .banner-item .brand.cadbury {
    top: -8%;
    left: 4%;
}

.banner-item {
    height: auto;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

.banner-item img.img-fluid {
    margin-top: 102px;
}


/*
.banner-item:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--black-color);
  opacity: .30;
}
*/

.banner-item .banner-text {
    position: relative;
    max-width: 725px;
    margin-top: 65px;
}

.banner-item .banner-text h1 {
    color: var(--white-color);
    font-weight: 900;
    font-size: 60px;
    margin-bottom: 25px;
}

.banner-item .banner-text p {
    margin-bottom: 35px;
    color: var(--white-color);
    font-size: 18px;
}

.cmn-btn {
    display: inline-block;
    color: var(--white-color);
    background-color: var(--green-color);
    padding: 12px 35px 10px;
    border-radius: 3px;
}

.cmn-btn:hover {
    color: var(--white-color);
    background-color: var(--black-color);
}

.banner-area {
    position: relative;
    overflow: hidden;
    /* box-shadow: 0px 4px 15px #bebebe; */
}

.banner-area .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0;
    position: absolute;
    left: 0;
    bottom: 40px;
    right: 0;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.banner-area .owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    margin: 5px 7px;
    background: var(--white-color);
    border-radius: 50%;
    position: relative;
    border: 1px solid var(--green-color);
}

.banner-area .owl-theme .owl-dots .owl-dot span:before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--green-color);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.banner-area .owl-theme .owl-dots .owl-dot.active span {
    background: var(--green-color);
}

.banner-area .owl-theme .owl-dots .owl-dot.active span:before {
    background-color: var(--white-color);
}


/*-- Home Two --*/

.banner-area.two {
    border-bottom: 1px solid #f5f5f5;
}

.banner-area.two .owl-theme .owl-nav.disabled+.owl-dots {
    left: auto;
    right: 100px;
}

.banner-social {
    position: absolute;
    top: 510px;
    left: -175px;
    z-index: 1;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.banner-social ul {
    margin: 0;
    padding: 0;
}

.banner-social ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 30px;
}

.banner-social ul li:last-child {
    margin-right: 0;
}

.banner-social ul li a {
    display: block;
    color: var(--black-color);
    font-size: 18px;
}

.banner-social ul li a:hover {
    color: var(--green-color);
}

.banner-social.two {
    left: unset;
    right: -135px;
}

.banner-social.two ul li a {
    color: var(--white-color);
}

.banner-social.two ul li a:hover {
    color: var(--green-color);
}

.banner-item.two:before {
    display: none;
}

.banner-item.two img {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 1290px;
    height: 100%;
}

.banner-item.two h1 {
    color: var(--black-color);
}

.banner-item.two p {
    color: var(--black-color);
}

.banner-item.two .banner-text {
    max-width: 645px;
}


/*-- Home Three --*/

.banner-area-three .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.banner-area-three .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.banner-area-three .container-fluid .row .col-lg-8 {
    padding-left: 0;
    padding-right: 0;
}

.banner-area-three .container-fluid .row .col-lg-4 {
    padding-left: 0;
    padding-right: 0;
}

.banner-area-three .banner-content {
    background-image: url("../img/home-three/banner-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding-top: 270px;
    padding-bottom: 200px;
    position: relative;
}

.banner-area-three .banner-content::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #000;
    opacity: .85;
}

.banner-area-three .banner-content .banner-inner {
    position: relative;
    max-width: 820px;
    margin-left: auto;
    padding-right: 220px;
}

.banner-area-three .banner-content .banner-inner h1 {
    color: var(--white-color);
    font-weight: 900;
    font-size: 60px;
    margin-bottom: 25px;
}

.banner-area-three .banner-content .banner-inner p {
    margin-bottom: 35px;
    color: var(--white-color);
    font-size: 18px;
}

.banner-area-three .banner-img {
    position: relative;
    margin-top: 85px;
    left: -90px;
}

.banner-area-three .banner-img a {
    color: var(--white-color);
    font-size: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    display: inline-block;
}

.banner-area-three .banner-img a:hover {
    color: var(--green-color);
}

.owl-theme .owl-nav {
    margin-top: 0px;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    font-size: 72px;
    padding: 10px;
    display: block;
    line-height: 50px;
    top: 48%;
    color: #0978d8;
    opacity: 0.9;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    color: #0978d8 !important;
}

.owl-carousel .owl-nav button.owl-perv {
    left: 15px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 15px;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent;
}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: #fff !important;
    background-color: #f58322 !important;
}

.nav-pills .nav-link {
    border-radius: .25rem;
    color: var(--green-color) !important;
    font-weight: 700;
}


/*----- End Banner CSS -----*/


/*----- Feature CSS -----*/

.feature-area {
    background-color: #f9f9f9;
}

.feature-item {
    position: relative;
    padding-left: 90px;
    margin-bottom: 30px;
}

.feature-item:hover i {
    top: 0;
    left: 0;
}

.feature-item:hover i:after {
    top: 0;
    left: 0;
}

.feature-item i {
    display: inline-block;
    color: var(--green-color);
    font-size: 40px;
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 1;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.feature-item i:after {
    position: absolute;
    content: '';
    width: 50px;
    height: 50px;
    top: -10px;
    left: -20px;
    border-radius: 50%;
    background-color: #e0efec;
    z-index: -1;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.feature-item h3 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-item p {
    margin-bottom: -5px;
    font-size: 15px;
}


/*-- Home Two --*/

.feature-area.two {
    background-color: var(--white-color);
}


/*-- Home Three --*/

.feature-area.three .feature-item {
    text-align: center;
    border-bottom: 2px solid var(--green-color);
    padding: 30px 33px 35px;
    height: 300px;
    box-shadow: 0 0 10px #ccc;
    border-radius: 10px;
}

.feature-area.three .feature-item i {
    position: relative;
    margin-bottom: 15px;
}


/*----- End Feature CSS -----*/


/*----- Services CSS -----*/

.section-title {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    margin-top: -4px;
}

.section-title .sub-title {
    font-weight: 700;
    font-family: var(--heading-font);
    font-size: 15px;
    color: var(--green-color);
    margin-bottom: 5px;
    display: block;
}

.section-title h2 {
    font-weight: 700;
    font-size: 40px;
    color: var(--black-color);
    margin-bottom: 0;
}

.service-area .container-fluid {
    padding-left: 50px;
    padding-right: 50px;
}

.service-area .container-fluid .col-lg-3 {
    padding-left: 0;
    padding-right: 0;
}

.service-item:hover .service-top a img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.service-item .service-top {
    overflow: hidden;
}

.service-item .service-top a {
    display: block;
}

.service-item .service-top a img {
    width: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.service-item .service-bottom {
    padding: 25px 25px 22px;
    border-left: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    position: relative;
}

.service-item .service-bottom h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0;
}

.service-item .service-bottom h3 a {
    display: block;
    color: var(--black-color);
}

.service-item .service-bottom h3 a:hover {
    color: var(--green-color);
}

.service-item .service-bottom .service-link {
    position: absolute;
    right: -1px;
    bottom: 0;
    display: block;
    width: 50px;
    height: 71px;
    color: var(--white-color);
    background-color: var(--green-color);
    text-align: center;
    font-size: 45px;
}

.service-item .service-bottom .service-link i {
    line-height: 71px;
}

.service-item .service-bottom .service-link:hover {
    background-color: var(--black-color);
}


/*----- End Services CSS -----*/


/*----- Counter CSS -----*/

.counter-item {
    margin-bottom: 30px;
    border: 1px solid var(--green-color);
    position: relative;
    text-align: center;
    padding: 10px 15px 25px;
    height: 200px;
}

.counter-item img {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.counter-item h3 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 50px;
    color: var(--green-color);
}

.counter-item h3 span {
    font-family: var(--heading-font);
}

.counter-item p {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 20px;
    color: var(--black-color);
}

.counter {
    background: #f6f6f6;
    padding-top: 70px;
}


/*----- End Counter CSS -----*/


/*----- About CSS -----*/

.about-area {
    max-width: 1360px;
    margin-left: auto;
    position: relative;
    padding-bottom: 0px;
}

.about-area .about-shape {
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.about-area .about-shape img {
    height: 650px;
}

.about-area .container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.about-area .container-fluid .row {
    margin-left: 0;
    margin-right: 0;
}

.about-area .container-fluid .row .col-lg-5 {
    padding-left: 100px;
    padding-right: 0;
}

.about-area .container-fluid .row .col-lg-7 {
    padding-left: 0;
    padding-right: 0;
}

.about-area .about-img {
    position: relative;
    margin-bottom: 60px;
}

.about-area .about-img img {
    width: 100%;
}

.about-area .about-img img:nth-child(1) {
    position: relative;
    z-index: 1;
    border-radius: 0 0 0 115px;
}

.about-area .about-img img:nth-child(2) {
    position: absolute;
    top: 30px;
    left: -30px;
}

.about-area .about-img a {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    z-index: 1;
    text-align: center;
    font-size: 100px;
    color: var(--white-color);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.about-area .about-img a i {
    line-height: 100px;
}

.about-area .about-img a:hover {
    color: var(--green-color);
}

.about-area .about-content {
    margin-bottom: 60px;
    padding-left: 30px;
    max-width: 665px;
    position: relative;
}

.about-area .about-content .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-area .about-content .section-title h2 {
    color: var(--white-color);
    font-size: 35px;
}

.about-area .about-content .nav-item {
    margin-right: 30px;
    margin-bottom: 0;
    padding-left: 0;
}

.about-area .about-content .nav-item:before {
    display: none;
}

.about-area .about-content .nav-item:last-child {
    margin-right: 0;
}

.about-area .about-content .nav-link {
    padding: 0;
    color: #fff;
    font-weight: 700;
    font-size: 17px;
    border-bottom: 2px solid #fff;
    border-radius: 0 !important;
    font-family: var(--heading-font);
}

.about-area .about-content .nav-pills .nav-link.active,
.about-area .about-content .nav-pills .show>.nav-link {
    color: var(--green-color);
    background-color: transparent;
    border-bottom: 2px solid var(--green-color);
}

.about-area .about-content .nav {
    margin-bottom: 22px;
}

.about-area .about-content p {
    color: var(--white-color);
    margin-bottom: 15px;
}

.about-area .about-content ul {
    margin: 0;
    padding: 0;
}

.about-area .about-content ul li {
    list-style-type: none;
    display: block;
    color: var(--white-color);
    position: relative;
    margin-bottom: 12px;
    padding-left: 15px;
}

.about-area .about-content ul li:last-child {
    margin-bottom: 0;
}

.about-area .about-content ul li:before {
    position: absolute;
    content: '';
    width: 5px;
    height: 5px;
    left: 0;
    top: 9px;
    background-color: var(--green-color);
}

.about-area .about-content .cmn-btn {
    margin-top: 30px;
}

.about-area .year {
    background-color: var(--white-color);
    width: 195px;
    text-align: center;
    position: absolute;
    bottom: -200px;
    right: -20px;
    padding: 15px 15px 35px;
    border-radius: 0 45px;
}

.about-area .year:before {
    position: absolute;
    content: '';
    width: 195px;
    height: 100%;
    right: -15px;
    bottom: -15px;
    background-color: var(--green-color);
    border-radius: 0 45px;
    z-index: -1;
}

.about-area .year h2 {
    color: var(--green-color);
    font-weight: 700;
    font-size: 100px;
    color: var(--green-color);
    margin-bottom: 0;
}

.about-area .year span {
    display: block;
    font-weight: 700;
    color: var(--black-color);
    font-family: var(--heading-font);
    margin-top: -12px;
}


/*-- Home Two --*/

.about-area.two {
    max-width: 100%;
    margin-left: 0;
}

.about-area.two .about-img {
    position: relative;
    margin-bottom: 70px;
}

.about-area.two .about-img img:nth-child(1) {
    border-radius: 0px 55px;
    z-index: -1;
}

.about-area.two .about-content {
    padding-left: 80px;
    max-width: 100%;
    margin-bottom: 30px;
}

.about-area.two .about-content .section-title h2 {
    color: var(--black-color);
}

.about-area.two .about-content .nav-link {
    color: var(--black-color);
    border-bottom: 2px solid var(--black-color);
}

.about-area.two .about-content p {
    color: var(--grey-color);
}

.about-area.two .about-content ul li {
    color: var(--grey-color);
}

.about-area.two .year {
    bottom: 45px;
    right: -30px;
}


/*----- End About CSS -----*/


/*----- Work CSS -----*/

.work-area .work-left {
    margin-bottom: 30px;
}

.work-area .work-left h2 {
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 10px;
}

.work-area .work-left span {
    display: block;
    margin-bottom: 30px;
    padding-right: 10px;
}

.work-area .work-left ul {
    margin: 0;
    padding: 0;
}

.work-area .work-left ul li {
    list-style-type: none;
    display: block;
    position: relative;
    -webkit-box-shadow: 0px 0px 20px 0px #dddddd80;
    box-shadow: 0px 0px 20px 0px #dddddd80;
    margin-bottom: 30px;
    padding: 30px 30px 30px 150px;
}

.work-area .work-left ul li:last-child {
    margin-bottom: 0;
}

.work-area .work-left ul li:hover i {
    color: var(--white-color);
    background-color: var(--green-color);
}

.work-area .work-left ul li i {
    display: inline-block;
    text-align: center;
    width: 100px;
    height: 100px;
    line-height: 100px;
    color: var(--green-color);
    background-color: #e5f5f2;
    font-size: 55px;
    position: absolute;
    top: 36px;
    left: 30px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.work-area .work-left ul li h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.work-area .work-left ul li p {
    margin-bottom: 0;
    font-size: 15px;
}

.work-area .work-right {
    margin-bottom: 30px;
    background-color: #f6f6f6;
    padding: 30px 30px;
}

.work-area .work-right h3 {
    color: var(--green-color);
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 10px;
}

.work-area .work-right p {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.work-area .work-right .form-group {
    margin-bottom: 15px;
}

.work-area .work-right .form-group label {
    margin-bottom: 5px;
    font-size: var(--all-size);
    color: var(--grey-color);
}

.work-area .work-right .form-group .form-control {
    height: 50px;
    border: 1px solid #ebebeb;
    border-radius: 0;
    background-color: var(--white-color);
    padding-left: 15px;
    font-size: 15px;
}

.work-area .work-right .form-group .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--green-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.work-area .work-right .form-group .nice-select {
    display: block;
    width: 100%;
    border-radius: 0;
    height: 50px;
    font-size: 15px;
    line-height: 50px;
    margin-bottom: 15px;
}

.work-area .work-right .form-group .nice-select .list {
    width: 100%;
    display: block;
}

.work-area .work-right .cmn-btn {
    width: 100%;
    border-radius: 0;
    display: block;
    margin-top: 20px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-weight: 700;
}

.work-area .work-right .form-check-inline .form-check-input {
    margin-top: -1px;
}


/*-- Home Two --*/

.work-area.two .work-right {
    background-color: var(--green-color);
}

.work-area.two .work-right h3 {
    color: var(--white-color);
}

.work-area.two .work-right p {
    color: var(--white-color);
}

.work-area.two .work-right .form-group label {
    color: var(--white-color);
}

.work-area.two .work-right .form-check-label {
    color: var(--white-color);
}

.work-area.two .work-right .cmn-btn {
    color: var(--white-color);
    background-color: var(--black-color);
}

.work-area.two .work-right .cmn-btn:hover {
    color: var(--black-color);
    background-color: var(--white-color);
}


/*-- Home Three --*/

.work-area.three .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.work-area.three .section-title .sub-title {
    margin-bottom: 5px;
}

.work-area.three .section-title h2 {
    font-size: 35px;
}

.work-area.three .section-title p {
    margin-bottom: 0;
    margin-top: 12px;
}

.work-area.three .work-left ul li {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 30px;
    padding: 0;
    padding-left: 90px;
}

.work-area.three .work-left ul li i {
    width: unset;
    height: unset;
    line-height: unset;
    color: var(--green-color);
    background-color: unset;
    top: -8px;
    left: 0;
}

.work-area.three .skill-wrap {
    overflow: hidden;
    padding-right: 15px;
}

.work-area.three .skill {
    margin-bottom: 35px;
    position: relative;
}

.work-area.three .skill:before {
    width: 100%;
    height: 6px;
    content: "";
    display: block;
    position: absolute;
    background: #eaeaea;
    bottom: 0;
}

.work-area.three .skill h3 {
    font-size: 15px;
    font-weight: 500;
    color: #262424;
    margin-bottom: 15px;
}

.work-area.three .skill-bar {
    width: 100%;
    height: 6px;
    background: var(--green-color);
    display: block;
    position: relative;
}

.work-area.three .skill-bar:before {
    position: absolute;
    content: '';
    top: -7px;
    right: -2px;
    width: 3px;
    height: 20px;
    border-radius: 12px;
    background-color: var(--green-color);
}

.work-area.three .skill-bar span {
    position: absolute;
    top: -28px;
    padding: 0;
    font-size: 18px;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 0;
    display: inline-block;
}

.work-area.three .skill1 {
    width: 85%;
}

.work-area.three .skill1 .skill-count1 {
    right: 7px;
}

.work-area.three .skill2 {
    width: 95%;
}

.work-area.three .skill2 .skill-count2 {
    right: 7px;
}

.work-area.three .skill3 {
    width: 80%;
}

.work-area.three .skill3 .skill-count3 {
    right: 7px;
}

.work-area.three .skill4 {
    width: 100%;
}

.work-area.three .skill4 .skill-count4 {
    right: 7px;
}

.work-area.three .skill5 {
    width: 85%;
}

.work-area.three .skill5 .skill-count5 {
    right: 7px;
}

.work-area.three .work-img {
    margin-bottom: 30px;
}

.work-area.three .work-img img {
    width: 100%;
}

.work-area.four .work-left h2 {
    font-size: 36px;
}

.work-area.four .accordion {
    margin: 0;
    padding: 0;
    margin-bottom: 30px;
}

.work-area.four .accordion p {
    display: none;
    padding-top: 25px;
    padding-left: 30px;
    margin-bottom: 0;
}

.work-area.four .accordion a {
    width: 100%;
    display: block;
    cursor: pointer;
    padding-bottom: 10px;
    border-bottom: 1px solid #e7e7e7;
    color: var(--black-color);
    font-size: 18px;
    padding-left: 30px;
    font-weight: 500;
}

.work-area.four .accordion a:after {
    position: absolute;
    left: 0;
    content: "+";
    top: -5px;
    color: #000000;
    font-size: 25px;
    font-weight: 500;
}

.work-area.four .accordion a.active:after {
    content: "-";
    font-size: 25px;
}

.work-area.four .accordion li {
    position: relative;
    list-style-type: none;
    margin-bottom: 30px;
    display: block;
    padding: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.work-area.four .accordion li:first-child {
    border-top: 0;
}

.work-area.four .accordion li:last-child {
    margin-bottom: 0;
}


/*-- About --*/

.work-area.five {
    background-color: #f6f6f6;
    /* padding-bottom: 290px; */
}

.work-area.five .counter-item {
    background-color: var(--white-color);
}

.work-area.five .counter-item.one {
    margin-top: 30px;
}

.work-area.five .counter-item.two {
    margin-top: -30px;
}


/*----- End Work CSS -----*/


/*----- Client CSS -----*/

.client-area {
    position: relative;
    background-image: url("../img/home-one/client-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.client-area:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--black-color);
    opacity: .85;
}

.client-area .section-title {
    margin-bottom: 35px;
}

.client-area .section-title .sub-title {
    color: var(--white-color);
}

.client-area .section-title h2 {
    color: var(--white-color);
}

.client-area .section-title p {
    margin-bottom: 0;
    color: var(--white-color);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
}

.client-area .client-item {
    -webkit-box-shadow: 0px 0px 14px 0px #dddddd80;
    box-shadow: 0px 0px 14px 0px #dddddd80;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 30px;
    margin-top: 15px;
    padding: 45px 20px 40px 40px;
    background-color: var(--white-color);
    border: 1px solid transparent;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    height: 238px;
}

.client-area .client-item:hover {
    border: 1px solid var(--green-color);
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 5px;
}

.client-area .client-item i {
    position: absolute;
    right: 50px;
    top: 20px;
    font-size: 75px;
    display: inline-block;
    color: #e5f5f2;
}

.client-area .client-item .client-top {
    position: relative;
    padding-left: 85px;
    padding-top: 5px;
    margin-bottom: 30px;
}

.client-area .client-item .client-top img {
    max-width: 65px;
    position: absolute;
    top: 0;
    left: 0;
}

.client-area .client-item .client-top h3 {
    color: var(--green-color);
    font-size: 20px;
    margin-bottom: 8px;
}

.client-area .client-item .client-top span {
    display: block;
}

.client-area .client-item p {
    margin-bottom: 0;
}

.client-area .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 0;
    line-height: 0;
    margin-bottom: -4px;
}

.client-area .owl-theme .owl-dots .owl-dot span {
    width: 16px;
    height: 16px;
    margin: 5px 7px;
    background: #ccebe5;
    border-radius: 50%;
    position: relative;
}

.client-area .owl-theme .owl-dots .owl-dot span:before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--green-color);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.client-area .owl-theme .owl-dots .owl-dot.active span {
    background: var(--green-color);
}

.client-area .owl-theme .owl-dots .owl-dot.active span:before {
    background-color: var(--white-color);
}


/*-- Home Two --*/

.client-area.two .client-item {
    text-align: center;
    padding: 45px 30px 40px 30px;
}

.client-area.two .client-item i {
    position: relative;
    right: 0;
    top: 0;
    font-size: 40px;
    display: inline-block;
    color: var(--white-color);
    background-color: var(--green-color);
    width: 65px;
    height: 65px;
    line-height: 65px;
    border-radius: 50%;
    margin-bottom: 30px;
}

.client-area.two .client-item p {
    margin-bottom: 30px;
}

.client-area.two .client-item .client-top {
    margin-bottom: 0;
    max-width: 245px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
}


/*----- End Client CSS -----*/


/*----- Team CSS -----*/

.team-item {
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 0 10px #ccc;
    padding: 10px;
    height: 375px;
}

.team-item:hover .team-top ul {
    bottom: 0;
    opacity: 1;
    visibility: visible;
}

.team-item .team-top {
    position: relative;
    margin-bottom: 25px;
    overflow: hidden;
}

.team-item .team-top img {
    width: 100%;
}

.team-item .team-top ul {
    margin: 0;
    padding: 0;
    background-color: var(--green-color);
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    bottom: -20px;
    right: 0;
    left: 0;
    padding-top: 12px;
    padding-bottom: 6px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.team-item .team-top ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 5px;
    margin-left: 5px;
}

.team-item .team-top ul li a {
    display: block;
    color: var(--white-color);
    font-size: 18px;
}

.team-item .team-top ul li a:hover {
    color: var(--black-color);
}

.team-item h3 {
    color: var(--green-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.team-item span {
    display: block;
    font-size: 15px;
    margin-top: -2px;
}


/*-- Home Three --*/

.team-area.three {
    background-color: #f6f6f6;
}


/*----- End Team CSS -----*/


/*----- Logo CSS -----*/

.logo-area {
    background-color: #f6f6f6;
}

.logo-area .owl-carousel .owl-item img {
    width: unset !important;
    margin-left: auto;
    margin-right: auto;
    transition: all 0.3s linear;
}


/*
.logo-area .owl-carousel .owl-item img:hover {
    filter: invert(56%) sepia(14%) saturate(1737%) hue-rotate(60deg) brightness(96%) contrast(85%);
}
*/

.logo-item {
    text-align: center;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}


/*----- End Logo CSS -----*/


/*----- Blog CSS -----*/

.blog-item {
    margin-bottom: 30px;
}

.blog-item:hover .blog-top a img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-item .blog-top {
    overflow: hidden;
}

.blog-item .blog-top a {
    display: block;
}

.blog-item .blog-top a img {
    width: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.blog-item .blog-bottom {
    border-left: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    padding: 20px 22px 25px;
}

.blog-item .blog-bottom ul {
    margin: 0;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.blog-item .blog-bottom ul li {
    list-style-type: none;
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    color: var(--black-color);
}

.blog-item .blog-bottom ul li:last-child {
    text-align: right;
}

.blog-item .blog-bottom ul li i {
    display: inline-block;
    color: var(--green-color);
    margin-right: 2px;
    font-size: 18px;
    position: relative;
    top: 2px;
}

.blog-item .blog-bottom ul li span {
    display: inline-block;
}

.blog-item .blog-bottom ul li a {
    display: inline-block;
    color: var(--black-color);
}

.blog-item .blog-bottom ul li a:hover {
    color: var(--green-color);
}

.blog-item .blog-bottom h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.5;
}

.blog-item .blog-bottom h3 a {
    color: var(--black-color);
}

.blog-item .blog-bottom h3 a:hover {
    color: var(--green-color);
}

.blog-item .blog-bottom p {
    margin-bottom: 20px;
}


/*----- End Blog CSS -----*/


/*----- Footer CSS -----*/

footer {
    background-color: var(--black-color);
}

.footer-item {
    margin-bottom: 30px;
}

.footer-item h3 {
    font-weight: 700;
    font-size: 20px;
    color: var(--white-color);
    position: relative;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

.footer-item h3:before {
    position: absolute;
    content: '';
    width: 75px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f58220;
}

.footer-item .footer-logo a {
    display: block;
}

.footer-item .footer-logo a img {
    margin-bottom: 15px;
}

.footer-item .footer-logo p {
    color: #a3a3a3;
    margin-bottom: 18px;
}

.footer-item .footer-logo ul {
    margin: 0;
    padding: 0;
}

.footer-item .footer-logo ul li {
    list-style-type: none;
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
}

.footer-item .footer-logo ul li:last-child {
    margin-bottom: 0;
}

.footer-item .footer-logo ul li i {
    display: inline-block;
    color: #f58220;
    font-size: 20px;
    position: absolute;
    left: 0;
    top: 2px;
}

.footer-item .footer-logo ul li span {
    display: block;
    color: #a3a3a3;
}

.footer-item .footer-logo ul li a {
    color: #a3a3a3;
}

.footer-item .footer-logo ul li a:hover {
    color: var(--green-color);
}

.footer-item .footer-service ul {
    margin: 0;
    padding: 0;
}

.footer-item .footer-service ul li {
    list-style-type: none;
    display: block;
    margin-bottom: 10px;
}

.footer-item .footer-service ul li a {
    display: block;
    color: #a3a3a3;
}

.footer-item .footer-service ul li a:hover {
    color: var(--green-color);
}

.footer-item .footer-post ul {
    margin: 0;
    padding: 0;
}

.footer-item .footer-post ul li {
    list-style-type: none;
    display: block;
    position: relative;
    padding-left: 90px;
    margin-bottom: 20px;
}

.footer-item .footer-post ul li:last-child {
    margin-bottom: 0;
}

.footer-item .footer-post ul li img {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
}

.footer-item .footer-post ul li a {
    display: block;
    color: #a3a3a3;
    margin-bottom: 3px;
}

.footer-item .footer-post ul li a:hover {
    color: var(--green-color);
}

.footer-item .footer-post ul li span {
    color: #a3a3a3;
    font-size: 14px;
}

.footer-item .footer-touch p {
    color: #a3a3a3;
    margin-bottom: 12px;
}

.footer-item .footer-touch .form-control {
    border: 1px solid #a3a3a3;
    height: 50px;
    padding-left: 15px;
    background-color: transparent;
    font-size: 15px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 0;
    margin-bottom: 15px;
    color: var(--white-color);
}

.footer-item .footer-touch .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--green-color);
}

.footer-item .footer-touch ::-webkit-input-placeholder {
    color: #ebebeb;
}

.footer-item .footer-touch :-ms-input-placeholder {
    color: #ebebeb;
}

.footer-item .footer-touch ::-ms-input-placeholder {
    color: #ebebeb;
}

.footer-item .footer-touch ::placeholder {
    color: #ebebeb;
}

.footer-item .footer-touch .cmn-btn {
    border: 0;
    border-radius: 0;
    display: block;
    width: 100%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    opacity: 1;
}

.footer-item .footer-touch .cmn-btn:hover {
    color: var(--black-color);
    background-color: var(--white-color);
}

.footer-item .footer-touch .validation-danger {
    color: #dc3545;
    margin-top: 10px;
}

.footer-item .footer-touch .validation-success {
    color: #28a745;
    margin-top: 10px;
}

.quick {
    padding-left: 10%;
}


/*----- End Footer CSS -----*/


/*----- Copyright CSS -----*/

.copyright-area {
    background-color: var(--black-color);
    border-top: 1px solid #313131;
    padding-top: 25px;
    padding-bottom: 25px;
}

.copyright-area p {
    margin-bottom: 0;
    color: #f5f5f5;
    font-size: 15px;
}

.copyright-area p a {
    display: inline-block;
    color: var(--green-color);
    font-weight: 700;
}

.copyright-area p a:hover {
    color: var(--white-color);
}

.copyright-area ul {
    margin: 0;
    padding: 0;
    text-align: right;
}

.copyright-area ul li {
    list-style-type: none;
    display: inline-block;
    font-size: 15px;
}

.copyright-area ul li span {
    display: inline-block;
    color: #f5f5f5;
    margin-left: 3px;
    margin-right: 3px;
}

.copyright-area ul li a {
    color: #f5f5f5;
    display: inline-block;
}

.copyright-area ul li a:hover {
    color: var(--green-color);
}


/*----- End Copyright CSS -----*/


/*----- Back to Top -----*/

#toTop {
    position: fixed;
    bottom: 30px;
    right: 0;
    cursor: pointer;
    display: none;
    z-index: 10;
}

.back-to-top-btn i {
    background: var(--green-color);
    color: var(--white-color);
    height: 50px;
    width: 50px;
    line-height: 50px;
    display: inline-block;
    text-align: center;
    font-size: 28px;
    border-radius: 50%;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    margin-right: 28px;
}

.back-to-top-btn i:hover {
    background-color: var(--black-color);
    color: var(--white-color);
}


/*----- End Back to Top -----*/


/*----- Preloader -----*/

.loader {
    position: fixed;
    z-index: 99999;
    background: var(--green-color);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
}

.loading-wrapper {
    position: relative;
    min-height: 120px;
    display: block;
}

.loading {
    position: absolute;
    min-height: 100px;
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    will-change: transform;
}

.loading:after {
    content: '';
    width: 50px;
    height: 50px;
    background: #fff;
    -webkit-animation: preloader 500ms linear infinite;
    animation: preloader 500ms linear infinite;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
}

.loading:before {
    content: '';
    width: 50px;
    height: 5px;
    background: #000;
    -webkit-animation: preloader-shadow 500ms linear infinite;
    animation: preloader-shadow 500ms linear infinite;
    opacity: 0.1;
    position: absolute;
    top: 59px;
    left: 0;
    border-radius: 50%;
}

@-webkit-keyframes preloader {
    17% {
        border-bottom-right-radius: 3px;
    }
    25% {
        -webkit-transform: translateY(9px) rotate(22.5deg);
        transform: translateY(9px) rotate(22.5deg);
    }
    50% {
        -webkit-transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        border-bottom-right-radius: 40px;
    }
    75% {
        -webkit-transform: translateY(9px) rotate(67.5deg);
        transform: translateY(9px) rotate(67.5deg);
    }
    100% {
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg);
    }
}

@keyframes preloader {
    17% {
        border-bottom-right-radius: 3px;
    }
    25% {
        -webkit-transform: translateY(9px) rotate(22.5deg);
        transform: translateY(9px) rotate(22.5deg);
    }
    50% {
        -webkit-transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        transform: scale(1, 0.9) translateY(18px) rotate(45deg);
        border-bottom-right-radius: 40px;
    }
    75% {
        -webkit-transform: translateY(9px) rotate(67.5deg);
        transform: translateY(9px) rotate(67.5deg);
    }
    100% {
        -webkit-transform: translateY(0) rotate(90deg);
        transform: translateY(0) rotate(90deg);
    }
}

@-webkit-keyframes preloader-shadow {
    50% {
        -webkit-transform: scale(1.2, 1);
        transform: scale(1.2, 1);
    }
}

@keyframes preloader-shadow {
    50% {
        -webkit-transform: scale(1.2, 1);
        transform: scale(1.2, 1);
    }
}


/*----- End Preloader -----*/


/*----- Pricing -----*/

.pricing-item {
    margin-bottom: 30px;
    text-align: center;
}

.pricing-item:hover .pricing-bottom {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.pricing-item .pricing-top {
    background-color: var(--green-color);
    padding: 12px 15px 18px;
}

.pricing-item .pricing-top p {
    margin-bottom: 3px;
    font-weight: 700;
    font-size: 24px;
    color: var(--white-color);
    font-family: var(--heading-font);
}

.pricing-item .pricing-top h3 {
    font-weight: 700;
    color: var(--white-color);
    font-size: 72px;
    margin-bottom: 5px;
}

.pricing-item .pricing-top h3 span {
    display: inline-block;
    font-size: 40px;
    margin-left: -8px;
}

.pricing-item .pricing-top .month {
    display: inline-block;
    font-size: 18px;
    font-family: var(--heading-font);
    color: var(--white-color);
    font-weight: 700;
}

.pricing-item .pricing-bottom {
    -webkit-box-shadow: 0px 0px 20px 0px #dddddd80;
    box-shadow: 0px 0px 20px 0px #dddddd80;
    padding: 30px 30px 30px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.pricing-item .pricing-bottom ul {
    margin: 0;
    padding: 0;
}

.pricing-item .pricing-bottom ul li {
    list-style-type: none;
    display: block;
    border-bottom: 1px solid #e8e8e8;
    padding-bottom: 12px;
    margin-bottom: 14px;
}

.pricing-item .pricing-bottom ul li:last-child {
    border-bottom: 0;
}


/*----- End Pricing -----*/


/*----- Page Title -----*/

.page-title-area {
    background-image: url("../img/main-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 300px;
    position: relative;
}

.about.page-title-area {
    background-image: url("../img/main-bg.jpg");
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    height: 300px;
    position: relative;
}

.product.page-title-area {
    background-image: url("../img/main-bg.jpg");
    background-size: cover;
    background-position: 50% 0%;
    background-repeat: no-repeat;
    height: 300px;
    position: relative;
}

.page-title-area:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: .70;
}

.page-title-area .title-content {
    position: relative;
    margin-top: 90px;
    text-align: center;
}

.page-title-area .title-content h2 {
    color: var(--white-color);
    font-weight: 700;
    font-size: 50px;
    margin-bottom: 10px;
}

.page-title-area ul {
    margin: 0;
    padding: 0;
}

.page-title-area ul li {
    list-style-type: none;
    display: inline-block;
    color: var(--white-color);
}

.page-title-area ul li a {
    display: block;
    color: var(--white-color);
}

.page-title-area ul li a:hover {
    color: var(--green-color);
}

.page-title-area ul li span {
    margin-left: 3px;
    margin-right: 3px;
}


/*----- End Page Title -----*/


/*----- Video -----*/

.video-area {
    text-align: center;
    position: relative;
    margin-top: -320px;
}

.video-area a {
    position: absolute;
    color: var(--white-color);
    font-size: 65px;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.video-area a:hover {
    color: var(--green-color);
}


/*----- End Video -----*/


/*----- Service Details -----*/

.widget-area .search {
    margin-bottom: 40px;
}

.widget-area .search form {
    position: relative;
}

.widget-area .search form .form-control {
    height: 50px;
    padding-left: 15px;
    border: 1px solid #e7e7e7;
    border-radius: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    font-size: 15px;
    color: var(--black-color);
}

.widget-area .search form .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--green-color);
}

.widget-area .search form ::-webkit-input-placeholder {
    color: #555555;
}

.widget-area .search form :-ms-input-placeholder {
    color: #555555;
}

.widget-area .search form ::-ms-input-placeholder {
    color: #555555;
}

.widget-area .search form ::placeholder {
    color: #555555;
}

.widget-area .search form .btn {
    color: var(--white-color);
    background-color: var(--green-color);
    font-size: 20px;
    border-radius: 0;
    padding: 0;
    width: 55px;
    height: 50px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    position: absolute;
    top: 0;
    right: 0;
}

.widget-area .search form .btn i {
    line-height: 50px;
}

.widget-area .search form .btn:hover {
    background-color: var(--black-color);
}

.widget-area .widget-item {
    margin-bottom: 30px;
}

.widget-area .widget-item h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 8px;
    position: relative;
}

.widget-area .widget-item h3:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--green-color);
}

.widget-area .cat ul {
    margin: 0;
    padding: 0;
}

.widget-area .cat ul li {
    list-style-type: none;
    display: block;
}

.widget-area .cat ul li:last-child a {
    margin-bottom: 0;
}

.widget-area .cat ul li a {
    display: block;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
    position: relative;
}

.widget-area .cat ul li a:before {
    position: absolute;
    content: '';
    width: 2px;
    height: 18px;
    left: 0;
    top: 2px;
    background-color: var(--green-color);
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.widget-area .cat ul li a:hover {
    padding-left: 15px;
}

.widget-area .cat ul li a:hover:before {
    opacity: 1;
}

.widget-area .open ul {
    margin: 0;
    padding: 0;
}

.widget-area .open ul li {
    list-style-type: none;
    display: block;
    position: relative;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eeeeee;
}

.widget-area .open ul li:last-child {
    margin-bottom: 0;
}

.widget-area .open ul li span {
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
}

.widget-area .quote .form-group {
    margin-bottom: 20px;
}

.widget-area .quote .form-group .form-control {
    height: 50px;
    border: 1px solid #eeeeee;
    padding-left: 15px;
    font-size: 15px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border-radius: 0;
}

.widget-area .quote .form-group .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--green-color);
}

.widget-area .quote .form-group ::-webkit-input-placeholder {
    color: var(--grey-color);
}

.widget-area .quote .form-group :-ms-input-placeholder {
    color: var(--grey-color);
}

.widget-area .quote .form-group ::-ms-input-placeholder {
    color: var(--grey-color);
}

.widget-area .quote .form-group ::placeholder {
    color: var(--grey-color);
}

.widget-area .quote .cmn-btn {
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.widget-area .post ul {
    margin: 0;
    padding: 0;
}

.widget-area .post ul li {
    list-style-type: none;
    display: block;
    margin-bottom: 25px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.widget-area .post ul li:last-child {
    margin-bottom: 0;
}

.widget-area .post ul li .img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
    max-width: 30%;
}

.widget-area .post ul li .content {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66%;
    flex: 0 0 66%;
    max-width: 66%;
    margin-left: 10px;
}

.widget-area .post ul li .content a {
    display: block;
    font-weight: 500;
    color: var(--black-color);
    margin-bottom: 3px;
    font-size: 15px;
}

.widget-area .post ul li .content a:hover {
    color: var(--green-color);
}

.widget-area .post ul li .content span {
    display: block;
    font-size: 14px;
}

.widget-area .tag h3 {
    margin-bottom: 15px;
}

.widget-area .tag ul {
    margin: 0;
    padding: 0;
}

.widget-area .tag ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 8px;
    margin-top: 10px;
}

.widget-area .tag ul li a {
    display: block;
    font-size: 14px;
    border: 1px solid var(--grey-color);
    color: var(--grey-color);
    padding: 8px 12px;
}

.widget-area .tag ul li a:hover {
    color: var(--white-color);
    background-color: var(--green-color);
    border: 1px solid var(--green-color);
}

.service-details-area .details-item {
    margin-bottom: 30px;
}

.service-details-area .details-item img {
    width: 100%;
    margin-bottom: 30px;
}

.service-details-area .details-item h3 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 15px;
}

.service-details-area .details-item p {
    margin-bottom: 15px;
}

.service-details-area .details-item p:last-child {
    margin-bottom: 0;
}

.service-details-area .details-item .p-one {
    margin-bottom: 30px;
}

.service-details-area .details-item .special-item {
    margin-bottom: 30px;
    text-align: center;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.service-details-area .details-item .special-item:hover {
    -webkit-transform: translate(0, -10px);
    transform: translate(0, -10px);
}

.service-details-area .details-item .special-item i {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 50%;
    font-size: 50px;
    color: var(--green-color);
    background-color: var(--white-color);
    -webkit-box-shadow: 0px 0px 20px 0px #dddddd80;
    box-shadow: 0px 0px 20px 0px #dddddd80;
    margin-bottom: 18px;
}

.service-details-area .details-item .special-item h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 0;
}


/*----- End Service Details -----*/


/*----- Blog Style One -----*/

.blog-style-one .blog-item {
    margin-bottom: 30px;
}

.blog-style-one .blog-item a {
    display: block;
}

.blog-style-one .blog-item a img {
    width: 100%;
}

.blog-style-one .blog-item .blog-inner {
    border-left: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    padding: 30px 30px 30px;
}

.blog-style-one .blog-item .blog-inner ul {
    margin: 0;
    padding: 0;
    margin-bottom: 15px;
}

.blog-style-one .blog-item .blog-inner ul li {
    list-style-type: none;
    display: inline-block;
    color: var(--black-color);
    margin-right: 15px;
}

.blog-style-one .blog-item .blog-inner ul li:last-child {
    margin-right: 0;
}

.blog-style-one .blog-item .blog-inner ul li i {
    display: inline-block;
    font-size: 17px;
    position: relative;
    top: 2px;
    color: var(--green-color);
}

.blog-style-one .blog-item .blog-inner ul li a {
    display: inline-block;
    color: var(--black-color);
}

.blog-style-one .blog-item .blog-inner ul li a:hover {
    color: var(--green-color);
}

.blog-style-one .blog-item .blog-inner ul li span {
    display: inline-block;
}

.blog-style-one .blog-item .blog-inner h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 30px;
}

.blog-style-one .blog-item .blog-inner h3 a {
    display: block;
    color: var(--black-color);
}

.blog-style-one .blog-item .blog-inner h3 a:hover {
    color: var(--green-color);
}

.blog-style-one .blog-item .blog-inner p {
    margin-bottom: 22px;
}

.blog-style-one .blog-item .blog-inner .cmn-btn {
    display: inline-block;
    padding: 14px 45px 12px;
}

.pagination-area {
    margin-bottom: 30px;
}

.pagination-area ul {
    margin: 0;
    padding: 0;
}

.pagination-area ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 8px;
}

.pagination-area ul li:last-child {
    margin-right: 0;
}

.pagination-area ul li a {
    display: block;
    color: var(--black-color);
    border: 1px solid var(--black-color);
    padding: 8px 20px 5px;
}

.pagination-area ul li a:hover,
.pagination-area ul li a.active {
    color: var(--white-color);
    border: 1px solid var(--green-color);
    background-color: var(--green-color);
}

.pagination-area.two {
    text-align: center;
    margin-bottom: 0;
}


/*----- End Blog Style One -----*/


/*----- Blog Details -----*/

.blog-details-area .details-item {
    margin-bottom: 30px;
}

.blog-details-area .details-item .details-img {
    margin-bottom: 30px;
}

.blog-details-area .details-item .details-img img {
    width: 100%;
}

.blog-details-area .details-item .details-img .details-img-inner {
    padding: 30px 30px 30px;
    border-left: 1px solid #ebebeb;
    border-right: 1px solid #ebebeb;
    border-bottom: 1px solid #ebebeb;
}

.blog-details-area .details-item .details-img .details-img-inner ul {
    margin: 0;
    padding: 0;
    margin-bottom: 5px;
}

.blog-details-area .details-item .details-img .details-img-inner ul li {
    list-style-type: none;
    display: inline-block;
    margin-right: 15px;
    font-size: 15px;
}

.blog-details-area .details-item .details-img .details-img-inner ul li:last-child {
    margin-right: 0;
}

.blog-details-area .details-item .details-img .details-img-inner ul li i {
    display: inline-block;
    color: var(--green-color);
    font-size: 17px;
    margin-right: 2px;
    position: relative;
    top: 2px;
}

.blog-details-area .details-item .details-img .details-img-inner ul li a {
    display: inline-block;
    color: var(--black-color);
}

.blog-details-area .details-item .details-img .details-img-inner ul li a:hover {
    color: var(--green-color);
}

.blog-details-area .details-item .details-img .details-img-inner ul li span {
    display: inline-block;
}

.blog-details-area .details-item .details-img .details-img-inner h3 {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 12px;
}

.blog-details-area .details-item .details-img .details-img-inner p {
    margin-bottom: 10px;
}

.blog-details-area .details-item .details-img .details-img-inner p:last-child {
    margin-bottom: 0;
}

.blog-details-area .details-item .details-img .details-img-inner blockquote {
    background-color: #f6f6f6;
    border-left: 2px solid var(--green-color);
    text-align: center;
    padding: 50px 90px 30px;
    font-size: 20px;
    color: var(--black-color);
    margin-bottom: 20px;
    margin-top: 20px;
    font-weight: 600;
    position: relative;
}

.blog-details-area .details-item .details-img .details-img-inner blockquote i {
    display: inline-block;
    color: var(--black-color);
    font-size: 55px;
    position: absolute;
    top: 30px;
    left: 48px;
}

.blog-details-area .details-item .details-tag {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid #ebebeb;
    padding: 20px 30px;
    margin-bottom: 50px;
}

.blog-details-area .details-item .details-tag ul {
    margin: 0;
    padding: 0;
}

.blog-details-area .details-item .details-tag ul li {
    list-style-type: none;
    display: inline-block;
}

.blog-details-area .details-item .details-tag .left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
}

.blog-details-area .details-item .details-tag .left ul li:last-child a {
    margin-right: 0;
}

.blog-details-area .details-item .details-tag .left ul li span {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    margin-right: 5px;
}

.blog-details-area .details-item .details-tag .left ul li a {
    display: inline-block;
    color: var(--grey-color);
    margin-right: 10px;
}

.blog-details-area .details-item .details-tag .left ul li a:hover {
    color: var(--green-color);
}

.blog-details-area .details-item .details-tag .right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    text-align: right;
}

.blog-details-area .details-item .details-tag .right ul li:last-child a {
    margin-right: 0;
}

.blog-details-area .details-item .details-tag .right ul li span {
    display: inline-block;
    font-weight: 700;
    font-size: 18px;
    margin-right: 5px;
}

.blog-details-area .details-item .details-tag .right ul li a {
    display: inline-block;
    color: var(--grey-color);
    margin-right: 10px;
    font-size: 20px;
    position: relative;
    top: 3px;
}

.blog-details-area .details-item .details-tag .right ul li a:hover {
    color: var(--green-color);
}

.blog-details-area .details-item .details-comments {
    margin-bottom: 50px;
}

.blog-details-area .details-item .details-comments h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 8px;
    position: relative;
}

.blog-details-area .details-item .details-comments h3:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--green-color);
}

.blog-details-area .details-item .details-comments ul {
    margin: 0;
    padding: 0;
}

.blog-details-area .details-item .details-comments ul li {
    list-style-type: none;
    display: block;
    position: relative;
    padding-left: 100px;
    margin-bottom: 30px;
}

.blog-details-area .details-item .details-comments ul li:last-child {
    margin-bottom: 0;
}

.blog-details-area .details-item .details-comments ul li img {
    position: absolute;
    top: 0;
    left: 0;
}

.blog-details-area .details-item .details-comments ul li h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.blog-details-area .details-item .details-comments ul li span {
    display: block;
    font-size: 15px;
    margin-bottom: 8px;
}

.blog-details-area .details-item .details-comments ul li p {
    margin-bottom: 8px;
}

.blog-details-area .details-item .details-comments ul li a {
    display: inline-block;
    color: var(--green-color);
}

.blog-details-area .details-item .details-comments ul li a:hover {
    color: var(--black-color);
}

.blog-details-area .details-item .details-form {
    background-color: #f5f5f5;
    padding: 28px 30px 30px;
}

.blog-details-area .details-item .details-form h3 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    position: relative;
}

.blog-details-area .details-item .details-form h3:before {
    position: absolute;
    content: '';
    width: 50px;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--green-color);
}

.blog-details-area .details-item .details-form span {
    display: block;
    margin-bottom: 15px;
}

.blog-details-area .details-item .details-form .form-group {
    margin-bottom: 30px;
}

.blog-details-area .details-item .details-form .form-group label {
    margin-bottom: 5px;
    font-weight: 500;
}

.blog-details-area .details-item .details-form .form-group .form-control {
    height: 50px;
    border-radius: 0;
    border: 1px solid #fff;
    padding-left: 20px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.blog-details-area .details-item .details-form .form-group .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--green-color);
}

.blog-details-area .details-item .details-form .form-group textarea {
    padding-top: 15px;
    height: auto !important;
}

.blog-details-area .details-item .details-form .form-check {
    margin-bottom: 30px;
}

.blog-details-area .details-item .details-form .cmn-btn {
    -webkit-transition: var(--transition);
    transition: var(--transition);
    border: 0;
}

.blog-details-area .details-item .details-form .form-check-input {
    margin-top: 4px;
}


/*----- End Blog Details -----*/


/*----- Contact -----*/

.contact-area.two .contact-form {
    margin-bottom: 30px;
    text-align: center;
}

.contact-area.two .contact-form h3 {
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-area.two .contact-form span {
    display: block;
    margin-bottom: 30px;
}

.contact-area.two .contact-form .form-group {
    margin-bottom: 30px;
    text-align: left;
}

.contact-area.two .contact-form .form-group label {
    margin-bottom: 5px;
    font-weight: 500;
}

.contact-area.two .contact-form .form-group .form-control {
    height: 50px;
    border: 0;
    background-color: #f5f5f5;
    padding-left: 20px;
    border-radius: 5px;
    border: 2px solid #57a03d;
}

.contact-area.two .contact-form .form-group .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
}

.contact-area.two .contact-form .form-group textarea {
    padding-top: 15px;
    height: auto !important;
}

.contact-area.two .contact-form .form-group .list-unstyled {
    margin-top: 10px;
    font-size: 14px;
    color: #dc3545;
}

.contact-area.two .contact-form .text-danger {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 20px;
}

.contact-area.two .contact-form .cmn-btn {
    border: 0;
    opacity: 1;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.contact-area.two .contact-place {
    text-align: center;
}

.contact-area.two .contact-place .contact-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e5e5e5;
    box-shadow: 0 0 10px #ccc;
    padding: 10px 20px 30px !important;
}

.contact-area.two .contact-place .contact-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.contact-area.two .contact-place .contact-item i {
    display: inline-block;
    color: var(--orange-color);
    font-size: 40px;
    margin-bottom: 8px;
}

.contact-area.two .contact-place .contact-item h4 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-area.two .contact-place .contact-item ul {
    margin: 0;
    padding: 0;
}

.contact-area.two .contact-place .contact-item ul li {
    list-style-type: none;
    display: block;
    margin-bottom: 5px;
}

.contact-area.two .contact-place .contact-item ul li:last-child {
    margin-bottom: 0;
}

.contact-area.two .contact-place .contact-item ul li span {
    display: inline-block;
    margin-right: 5px;
}

.contact-area.two .contact-place .contact-item ul li a {
    display: inline-block;
    color: var(--green-color);
}

.contact-area.two .contact-place .contact-item ul li a:hover {
    color: var(--black-color);
}

.contact-area.two .contact-place .contact-item span {
    display: block;
}


/*----- End Contact -----*/


/*----- Map -----*/

.map-area #map {
    display: block;
    width: 100%;
    border: 0;
    height: 600px;
}


/*----- End Map -----*/


/*----- Gallery -----*/

.gallery-area .gallery-item {
    margin-bottom: 30px;
    position: relative;
}

.gallery-area .gallery-item:hover:before {
    opacity: .60;
}

.gallery-area .gallery-item:hover i {
    left: 50%;
    opacity: 1;
}

.gallery-area .gallery-item:before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.gallery-area .gallery-item img {
    width: 100%;
}

.gallery-area .gallery-item i {
    position: absolute;
    top: 50%;
    left: 48%;
    color: var(--white-color);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    font-size: 40px;
    opacity: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}


/*----- End Gallery -----*/


/*----- Quote -----*/

.quote-area .quote-content {
    margin-bottom: 30px;
    text-align: left;
}

.quote-area .quote-content .section-title {
    margin-bottom: 15px;
    text-align: left;
}

.quote-area .quote-content span {
    margin-bottom: 30px;
    display: block;
}

.quote-area .quote-content ul {
    margin: 0;
    padding: 0;
}

.quote-area .quote-content ul li {
    list-style-type: none;
    display: block;
    font-weight: 700;
    color: var(--black-color);
    margin-bottom: 15px;
}

.quote-area .quote-content ul li:last-child {
    margin-bottom: 0;
}

.quote-area .quote-content ul li a {
    display: inline-block;
    font-weight: 400;
    color: var(--black-color);
    margin-left: 3px;
}

.quote-area .quote-content ul li a:hover {
    color: var(--green-color);
}

.quote-area .quote-content ul li span {
    display: inline-block;
    color: var(--black-color);
    font-weight: 400;
    margin-left: 3px;
    margin-bottom: 0;
}

.quote-area .quote-form {
    margin-bottom: 30px;
}

.quote-area .quote-form form .form-group {
    margin-bottom: 30px;
}

.quote-area .quote-form form .form-group .form-control {
    height: 50px;
    border-radius: 0;
    border: 0;
    background-color: #f5f5f5;
    font-size: 15px;
    padding-left: 20px;
}

.quote-area .quote-form form .form-group .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
}

.quote-area .quote-form form .form-group .nice-select {
    width: 100%;
    border: 0;
    background-color: #f5f5f5;
    height: 50px;
    border-radius: 0;
    line-height: 50px;
    display: block;
    font-size: 15px;
    margin-bottom: 30px;
}

.quote-area .quote-form form .form-group .nice-select .list {
    width: 100%;
    display: block;
}

.quote-area .quote-form form .cmn-btn {
    width: 100%;
    display: block;
    border-radius: 0;
    font-size: 15px;
    border: 0;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}


/*----- End Quote -----*/


/*----- Testimonial -----*/

.client-area.three {
    background-image: unset;
}

.client-area.three:before {
    display: none;
}

.client-area.three:after {
    display: none;
}


/*----- End Testimonial -----*/


/*----- FAQ -----*/

.faq-area .work-left {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    background-color: #f6f6f6;
    padding: 42px 30px 50px;
    margin-bottom: 0;
}

.faq-area .work-left .faq-find {
    margin-top: 30px;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.faq-area .work-left .faq-find h3 {
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 26px;
}

.faq-area .work-left .faq-find p {
    margin-bottom: 20px;
}


/*----- End FAQ -----*/


/*----- Error -----*/

.error-area {
    padding-top: 240px;
    padding-bottom: 200px;
}

.error-area .error-item {
    text-align: center;
}

.error-area .error-item h1 {
    font-weight: 900;
    font-size: 160px;
    margin-bottom: 5px;
}

.error-area .error-item span {
    display: block;
    font-weight: 700;
    font-size: 30px;
    color: var(--black-color);
    margin-bottom: 10px;
}

.error-area .error-item p {
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/*----- End Error -----*/


/*----- Coming Soon -----*/

.coming-soon-area {
    height: 100vh;
    text-align: center;
}

.coming-soon-area .soon-item h1 {
    font-weight: 900;
    font-size: 100px;
    margin-bottom: 15px;
}

.coming-soon-area .soon-item span {
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
}

.coming-soon-area .soon-item .coming-inner {
    background-color: var(--black-color);
    padding-top: 20px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.coming-soon-area .soon-item .coming-inner h3 {
    font-weight: 700;
    font-size: 40px;
    margin-bottom: 0;
    color: var(--white-color);
}

.coming-soon-area .soon-item .coming-inner p {
    margin-bottom: 0;
    color: var(--white-color);
}


/*----- End Coming Soon -----*/


/*----- Rules -----*/

.rules-area .rules-content {
    margin-bottom: 30px;
}

.rules-area .rules-img {
    margin-bottom: 30px;
}

.rules-area .rules-img img {
    width: 100%;
}

.rules-area h3 {
    font-weight: 500;
    font-size: 26px;
    margin-bottom: 15px;
}

.rules-area p {
    margin-bottom: 20px;
}

.rules-area p:last-child {
    margin-bottom: 0;
}

.rules-area ul {
    margin: 0;
    padding: 0;
}

.rules-area ul li {
    list-style-type: none;
    display: block;
    margin-bottom: 18px;
}


/*----- End Rules -----*/


/*----- Common Form -----*/

.common-form-area .form-item {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.common-form-area .form-item h2 {
    font-weight: 700;
    font-size: 25px;
    bottom: 0;
    padding-top: 20px;
    padding-bottom: 20px;
    border-left: 2px solid var(--green-color);
    border-right: 2px solid var(--green-color);
    background-color: #f5f5f5;
    margin-bottom: 40px;
}

.common-form-area .form-item .form-group {
    margin-bottom: 30px;
}

.common-form-area .form-item .form-group .form-control {
    height: 50px;
    border: 1px solid #f5f5f5;
    border-radius: 0;
    padding-left: 20px;
    font-size: 15px;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.common-form-area .form-item .form-group .form-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid var(--green-color);
}

.common-form-area .form-item .form-group .nice-select {
    width: 100%;
    display: block;
    font-size: 15px;
    height: 50px;
    border: 1px solid #f5f5f5;
    border-radius: 0;
    margin-bottom: 30px;
}

.common-form-area .form-item .form-group .nice-select span {
    line-height: 50px;
}

.common-form-area .form-item .form-group .nice-select .list {
    width: 100%;
    display: block;
}

.common-form-area .form-item .form-group .nice-select .list li {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.common-form-area .form-item .form-group .nice-select .list li:last-child {
    text-align: left;
}

.common-form-area .form-item .cmn-btn {
    border: 0;
    border-radius: 0;
    width: 100%;
    display: block;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.common-form-area .form-item ul {
    margin: 0;
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
}

.common-form-area .form-item ul li {
    list-style-type: none;
    display: inline-block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.common-form-area .form-item ul li:last-child {
    text-align: right;
}

.common-form-area .form-item ul li .form-check {
    padding-left: 20px;
    text-align: left;
}

.common-form-area .form-item ul li a {
    display: inline-block;
    color: var(--green-color);
}

.common-form-area .form-item ul li a:hover {
    color: var(--black-color);
}

.common-form-area .form-item h4 {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 30px;
}

.common-form-area .form-item h4 a {
    display: inline-block;
    color: var(--green-color);
    font-weight: 700;
}

.common-form-area .form-item h4 a:hover {
    color: var(--black-color);
}


/*----- End Common Form -----*/


/*----- Scroll Bar -----*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black-color);
}

::-webkit-scrollbar-thumb {
    background: var(--white-color);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-color);
}


/*----- End Scroll Bar -----*/


/*# sourceMappingURL=style.css.map */

.tw {
    color: #fff;
}

@media(max-width:600px) {
    .team-item {
        height: auto !important;
    }
    .tw {
        color: #000;
    }
    .counter-item {
        height: auto;
    }
}

.logo-slider .col-md-2 {
    background: #fff;
    margin: 15px;
}